article {
  margin: 2rem auto;
  padding: 1rem;
  max-width: 80ch; /* for dumb terminals */
}
/* Inline code */
code {
  background-color: #f5f5f5;  /* Light gray highlight */
  white-space: nowrap;        /* No wrapping inside inline code */
}

/* Block code (fenced or indented) */
pre {
  background-color: #f5f5f5; /* Dark background for contrast */
  padding: 0.5rem;             /* Space around code */
  overflow-x: auto;          /* Horizontal scroll for long lines */
}

/* Code inside <pre> */
pre code {
  display: block;  /* Ensures full block formatting */
  white-space: pre; /* Preserve whitespace and line breaks */
}
